home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bzip2.prerm < prev    next >
Text File  |  2008-06-23  |  141b  |  9 lines

  1. #!/bin/sh
  2. set -eu
  3.  
  4. # FHS
  5. pkg=bzip2
  6. if ( [ "$1" = "upgrade" ] || [ "$1" = "remove" ] ) && [ -L /usr/doc/$pkg ]; then
  7.   rm -f /usr/doc/$pkg
  8. fi
  9.